/* ==========================================================================
   AMARE Store — Shared Storefront CSS
   Reusable components for all store pages
   ========================================================================== */

/* ---------- Store Section Header ---------- */
.store-section-header { text-align: center; margin-bottom: 56px; }
.store-section-header .eyebrow { margin-inline: auto; }

.store-section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--color-navy);
  margin-bottom: 14px;
}

.store-section-desc {
  font-size: 16px;
  color: var(--color-text-soft);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ---------- Hero Shared ---------- */
.store-hero {
  position: relative;
  padding: 82px 0 56px;
  background: linear-gradient(170deg, #E3F4FD 0%, #EEF8FE 25%, #F5FBFF 50%, #EDF7FD 75%, #DEF0FA 100%);
  overflow: hidden;
}

.store-hero-page {
  position: relative;
  padding: 60px 0 44px;
  background: linear-gradient(170deg, #E3F4FD 0%, #EEF8FE 25%, #F5FBFF 50%, #EDF7FD 75%, #DEF0FA 100%);
  overflow: hidden;
}

.store-hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 20% 50%, rgba(25,184,242,.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(246,179,0,.05) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 80%, rgba(18,59,120,.04) 0%, transparent 55%);
}

.store-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.store-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,184,242,.12) 0%, transparent 70%);
}

.store-hero-circle-1 { width: 600px; height: 600px; top: -200px; left: -100px; }
.store-hero-circle-2 { width: 400px; height: 400px; bottom: -100px; right: -80px; background: radial-gradient(circle, rgba(246,179,0,.1) 0%, transparent 70%); }
.store-hero-circle-3 { width: 250px; height: 250px; top: 40%; right: 30%; }

.store-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .08;
  pointer-events: none;
}
.store-hero-glow-1 { width: 420px; height: 420px; background: #19B8F2; top: -80px; right: -60px; }
.store-hero-glow-2 { width: 320px; height: 320px; background: #F6B300; bottom: -60px; left: -40px; }

.store-hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  opacity: .15;
}

.store-hero-blob-1 { width: 350px; height: 350px; background: #19B8F2; right: 10%; top: -60px; animation: storeHeroFloat 8s ease-in-out infinite; }
.store-hero-blob-2 { width: 280px; height: 280px; background: #F6B300; left: 5%; bottom: -40px; animation: storeHeroFloat 10s 2s ease-in-out infinite; }

@keyframes storeHeroFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(25px,-20px) scale(1.06); }
  66%  { transform: translate(-15px,18px) scale(.95); }
}

/* Homepage hero */
.store-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.store-hero-text { position: relative; z-index: 1; }

.store-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(18,59,120,.08);
  border: 1px solid rgba(18,59,120,.14);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.store-hero-title {
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.store-hero-title mark {
  background: none;
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.store-hero-title mark::after {
  content: '';
  position: absolute;
  bottom: -2px; right: 0; left: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: 4px;
  opacity: .4;
}

.store-hero-desc {
  font-size: 16px;
  color: var(--color-text-soft);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.store-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }

/* Feature bar */
.store-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 6px;
}
.store-hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-navy);
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,59,120,.1);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  backdrop-filter: blur(6px);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.store-hero-feature:hover {
  background: rgba(255,255,255,.75);
  border-color: rgba(18,59,120,.2);
}
.store-hero-feature svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.store-hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

.store-hero-visual-card {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 50px rgba(18,59,120,.12), 0 4px 16px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  animation: storeCardFloat 5.5s ease-in-out infinite;
}

.store-hero-visual-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: var(--gradient-primary);
  opacity: .06; border-radius: 0 0 0 120px;
}

.store-hero-visual-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 80px; height: 80px;
  background: var(--gradient-accent);
  opacity: .07; border-radius: 0 80px 0 0;
}

/* Product photo inside visual card */
.store-hero-prod-photo {
  position: relative; z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 8px 32px rgba(18,59,120,.1), 0 2px 8px rgba(0,0,0,.05);
}
.store-hero-prod-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.store-hero-float-el {
  position: absolute;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}

.store-hero-float-1 {
  width: 64px; height: 64px; top: -10px; right: -18px;
  background: rgba(25,184,242,.12);
  animation: storeCardFloat 4.5s ease-in-out infinite;
}
.store-hero-float-2 {
  width: 68px; height: 68px; bottom: -12px; left: -20px;
  background: rgba(246,179,0,.14);
  animation: storeCardFloat 5s 1.2s ease-in-out infinite;
}
.store-hero-float-3 {
  width: 48px; height: 48px; top: 28%; left: -28px;
  background: rgba(18,59,120,.1);
  animation: storeCardFloat 4s .6s ease-in-out infinite;
}

@keyframes storeCardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

.store-hero-float-1 svg { width: 26px; height: 26px; color: var(--color-primary); }
.store-hero-float-2 svg { width: 28px; height: 28px; color: var(--color-accent); }
.store-hero-float-3 svg { width: 20px; height: 20px; color: var(--color-navy); }

/* Page hero (products, product) */
.store-hero-page-content { text-align: center; position: relative; z-index: 1; }

.store-hero-page-title {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.25;
  margin-bottom: 14px;
}

.store-hero-page-desc {
  font-size: 16px;
  color: var(--color-text-soft);
  max-width: 540px;
  margin-inline: auto;
  line-height: 1.75;
}

/* ---------- Breadcrumb ---------- */
.store-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--color-text-soft);
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.store-breadcrumb a {
  color: var(--color-primary);
  transition: color var(--t-fast);
}

.store-breadcrumb a:hover { color: var(--color-primary-dark); }

.store-breadcrumb-sep { color: rgba(18,59,120,.3); font-size: 11px; }

/* ---------- Product Card ---------- */
.store-products {
  padding: 80px 0 100px;
  background: var(--color-light);
  position: relative;
  overflow: hidden;
}

.store-products::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(25,184,242,.05) 0%, transparent 70%);
  top: -150px; left: -150px;
  border-radius: 50%;
  pointer-events: none;
}

.store-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.store-product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  border: 1px solid rgba(18,59,120,.05);
}

.store-product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.store-product-image {
  height: 220px;
  background: linear-gradient(135deg, #E3F4FD 0%, #F3FAFF 50%, #EDF6FE 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.store-product-image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255,255,255,.6));
}

.store-product-image svg { width: 64px; height: 64px; color: var(--color-primary); opacity: .5; }

.store-product-badge {
  position: absolute; top: 14px; right: 14px;
  background: #0C2A5E;
  color: #F6B300;
  border: 1px solid rgba(39,174,96,.2);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  z-index: 1;
}

.store-product-badge.unavailable {
  background: rgba(231,76,60,.1);
  color: #e74c3c;
  border-color: rgba(231,76,60,.18);
}

.store-product-badge.featured-badge {
  background: rgba(246,179,0,.12);
  color: #F6B300;
  border-color: rgba(246,179,0,.2);
}

.store-product-body { padding: 24px 22px 22px; }

.store-product-name {
  font-size: 18px; font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.store-product-desc {
  font-size: 14px; color: var(--color-text-soft);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}

.store-product-price {
  font-size: 20px; font-weight: 900;
  color: var(--color-accent);
}

.store-product-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px;
  background: var(--color-navy);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 700;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  box-shadow: 0 6px 18px rgba(18,59,120,.25);
}

.store-product-btn:hover {
  transform: translateY(-2px);
  background: var(--color-primary-dark);
  box-shadow: 0 10px 24px rgba(25,184,242,.3);
}

.store-product-btn svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.store-product-btn:hover svg { transform: translateX(-3px); }

/* ---------- Why Buy From Us ---------- */
.store-why {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--color-white) 0%, #F3FAFF 100%);
}

.store-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.store-why-card {
  text-align: center;
  padding: 40px 24px 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18,59,120,.05);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.store-why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.store-why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(246,179,0,.12) 0%, rgba(246,179,0,.05) 100%);
}

.store-why-icon svg { width: 24px; height: 24px; color: var(--color-accent); }

.store-why-title {
  font-size: 16px; font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.store-why-desc {
  font-size: 13px; color: var(--color-text-soft);
  line-height: 1.65;
}

/* ---------- CTA ---------- */
.store-cta {
  padding: 100px 0;
  background: linear-gradient(160deg, #0C2A5E 0%, #123B78 40%, #1E74C9 100%);
  position: relative;
  overflow: hidden;
}

.store-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(25,184,242,.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 70%, rgba(246,179,0,.08) 0%, transparent 50%);
  pointer-events: none;
}

.store-cta-content {
  text-align: center;
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.store-cta-title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 16px;
}

.store-cta-title mark {
  background: none;
  color: var(--color-accent);
}

.store-cta-desc {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ---------- Products Page Toolbar ---------- */
.store-toolbar {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.store-search {
  flex: 1;
  min-width: 240px;
  position: relative;
}

.store-search input {
  width: 100%;
  padding: 14px 52px 14px 20px;
  border: 1.5px solid rgba(18,59,120,.12);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.store-search input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(25,184,242,.1);
}

.store-search-icon {
  position: absolute; top: 50%; right: 20px;
  transform: translateY(-50%);
  color: var(--color-text-soft);
  pointer-events: none;
}

.store-search-icon svg { width: 18px; height: 18px; }

.store-filter-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: var(--color-white);
  border: 1.5px solid rgba(18,59,120,.12);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  color: var(--color-navy);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast);
  font-family: var(--font-main);
}

.store-filter-btn:hover {
  border-color: var(--color-primary);
  background: rgba(25,184,242,.04);
}

.store-filter-btn svg { width: 16px; height: 16px; }

.store-filter-select {
  padding: 14px 20px;
  border: 1.5px solid rgba(18,59,120,.12);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700;
  font-family: var(--font-main);
  color: var(--color-navy);
  background: var(--color-white);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23123B78' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 44px;
  min-width: 180px;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.store-filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(25,184,242,.1);
}

.store-filter-select option:disabled {
  color: #9ca3af;
  font-style: italic;
}

.store-filter-sep {
  color: #d1d5db !important;
}

.store-products-count {
  font-size: 13px; color: var(--color-text-soft);
  margin-bottom: 24px;
}

/* ---------- Single Product Page ---------- */
.store-product-detail {
  padding: 80px 0 100px;
  background: var(--color-white);
}

.store-product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Gallery */
.store-product-gallery { position: relative; }

.store-product-gallery-main {
  background: linear-gradient(135deg, #E3F4FD 0%, #F3FAFF 50%, #EDF6FE 100%);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(18,59,120,.06);
}

.store-product-gallery-main svg { width: 140px; height: 140px; color: var(--color-primary); opacity: .4; }

.store-product-gallery-thumbs {
  display: flex; gap: 12px;
}

.store-product-gallery-thumb {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #E3F4FD 0%, #F3FAFF 50%, #EDF6FE 100%);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--t-fast), transform var(--t-fast);
  overflow: hidden;
}

.store-product-gallery-thumb:hover,
.store-product-gallery-thumb.active {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.store-product-gallery-thumb svg { width: 36px; height: 36px; color: var(--color-primary); opacity: .4; }

/* Product Info */
.store-product-info { position: sticky; top: calc(var(--topbar-h) + var(--nav-h) + 24px); }

.store-product-info-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  margin-bottom: 16px;
}

.store-product-info-badge.available {
  background: rgba(39,174,96,.1);
  color: #27ae60;
  border: 1px solid rgba(39,174,96,.18);
}

.store-product-info-name {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

.store-product-info-price {
  font-size: 28px; font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.store-product-info-desc {
  font-size: 15px; color: var(--color-text-soft);
  line-height: 1.8;
  margin-bottom: 28px;
}

.store-product-info-divider {
  height: 1px;
  background: rgba(18,59,120,.08);
  margin: 24px 0;
}

/* Specifications */
.store-product-specs-title {
  font-size: 17px; font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 16px;
}

.store-product-specs-list {
  display: grid; gap: 12px;
}

.store-product-spec {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--color-text-soft);
}

.store-product-spec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Contact Button */
.store-product-contact {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px;
  background: var(--gradient-accent);
  color: var(--color-navy);
  border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 700;
  box-shadow: var(--shadow-accent);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.store-product-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(246,179,0,.45);
}

.store-product-contact svg { width: 18px; height: 18px; }

/* ---------- Responsive ---------- */

@media (max-width: 1023px) {
  .store-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .store-hero-visual { order: -1; }
  .store-hero-text { text-align: center; }
  .store-hero-desc { margin-inline: auto; }
  .store-hero-actions { justify-content: center; }
  .store-hero-features { justify-content: center; }
  .store-hero-visual-card { max-width: 340px; aspect-ratio: auto; height: auto; padding: 20px 18px; }
  .store-products-grid { grid-template-columns: repeat(2, 1fr); }
  .store-why-grid { grid-template-columns: repeat(2, 1fr); }
  .store-product-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .store-product-gallery-main { height: 300px; }
  .store-product-info { position: static; }
}

@media (max-width: 767px) {
  .store-hero { padding: 68px 0 40px; }
  .store-hero-page { padding: 50px 0 34px; }
  .store-hero-badge { font-size: 12px; padding: 6px 16px; }
  .store-hero-actions { flex-direction: column; width: 100%; }
  .store-hero-actions .btn { width: 100%; justify-content: center; }
  .store-hero-features { justify-content: center; }
  .store-hero-visual-card { padding: 20px 16px; max-width: 300px; aspect-ratio: auto; }
  .store-hero-float-1 { width: 46px; height: 46px; top: -8px; right: -10px; }
  .store-hero-float-2 { width: 50px; height: 50px; bottom: -10px; left: -12px; }
  .store-hero-float-3 { display: none; }

  .store-section-header { margin-bottom: 36px; }

  .store-products { padding: 50px 0 70px; }
  .store-products-grid { grid-template-columns: 1fr; gap: 20px; }
  .store-product-image { height: 180px; }

  .store-why { padding: 60px 0; }
  .store-why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .store-why-card { padding: 28px 16px 24px; }

  .store-cta { padding: 60px 0; }
  .store-toolbar { gap: 10px; }
  .store-search { min-width: 100%; }
  .store-filter-select { min-width: auto; width: 100%; }
  .store-product-detail { padding: 50px 0 70px; }
  .store-product-gallery-main { height: 250px; }
  .store-product-gallery-thumbs { gap: 8px; }
  .store-product-gallery-thumb { width: 64px; height: 64px; }
  .store-product-gallery-thumb svg { width: 28px; height: 28px; }
  .store-product-contact { width: 100%; justify-content: center; }
}

@media (max-width: 479px) {
  .store-hero { padding: 56px 0 32px; }
  .store-hero-feature { font-size: 11.5px; padding: 6px 12px; }
  .store-hero-visual-card { max-width: 260px; padding: 16px 12px; }
  .store-why-grid { grid-template-columns: 1fr; }
  .store-product-footer { flex-direction: column; align-items: flex-start; }
}
